home *** CD-ROM | disk | FTP | other *** search
/ Aminet 37 / Aminet 37 (2000)(Schatztruhe)[!][Jun 2000].iso / Aminet / dev / lang / sofa.lha / sofa / smalleiffel / lib_se / procedure.e < prev    next >
Text File  |  2000-03-25  |  2KB  |  68 lines

  1. --          This file is part of SmallEiffel The GNU Eiffel Compiler.
  2. --          Copyright (C) 1994-98 LORIA - UHP - CRIN - INRIA - FRANCE
  3. --            Dominique COLNET and Suzanne COLLIN - colnet@loria.fr
  4. --                       http://SmallEiffel.loria.fr
  5. -- SmallEiffel is  free  software;  you can  redistribute it and/or modify it
  6. -- under the terms of the GNU General Public License as published by the Free
  7. -- Software  Foundation;  either  version  2, or (at your option)  any  later
  8. -- version. SmallEiffel is distributed in the hope that it will be useful,but
  9. -- WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  10. -- or  FITNESS FOR A PARTICULAR PURPOSE.   See the GNU General Public License
  11. -- for  more  details.  You  should  have  received a copy of the GNU General
  12. -- Public  License  along  with  SmallEiffel;  see the file COPYING.  If not,
  13. -- write to the  Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  14. -- Boston, MA 02111-1307, USA.
  15. --
  16. class PROCEDURE
  17.  
  18. inherit EFFECTIVE_ROUTINE rename make_effective_routine as make end;
  19.  
  20. creation make
  21.  
  22. feature
  23.  
  24.    result_type: TYPE is
  25.       do
  26.       end;
  27.  
  28.    to_run_feature(t: TYPE; fn: FEATURE_NAME): RUN_FEATURE_3 is
  29.       do
  30.          !!Result.make(t,fn,Current);
  31.       end;
  32.  
  33.    a_default_rescue(rc: RUN_CLASS; fn: FEATURE_NAME): RUN_FEATURE_3 is
  34.          -- Non Void when the corresponding `default_rescue' really
  35.          -- make something.
  36.       local
  37.          do_it: BOOLEAN;
  38.       do
  39.          if local_vars /= Void then
  40.             do_it := true;
  41.          end;
  42.          if routine_body /= Void then
  43.             do_it := not routine_body.empty_or_null_body;
  44.          end;
  45.          if do_it then
  46.             Result := to_run_feature(rc.current_type,fn);
  47.          end;
  48.       end;
  49.  
  50. feature {NONE}
  51.  
  52.    try_to_undefine_aux(fn: FEATURE_NAME;
  53.                        bc: BASE_CLASS): DEFERRED_ROUTINE is
  54.       do
  55.          !DEFERRED_PROCEDURE!Result.from_effective(fn,arguments,
  56.                                                    require_assertion,
  57.                                                    ensure_assertion,
  58.                                                    bc);
  59.       end;
  60.  
  61.    pretty_print_once_or_do is
  62.       do
  63.          fmt.keyword(fz_do);
  64.       end;
  65.  
  66. end -- PROCEDURE
  67.  
  68.